Product Code Database
Example Keywords: stockings -glove $22-193
   » » Wiki: Device Driver
Tag Wiki 'Device Driver'.
Tag

In the context of an , a device driver is a that operates or controls a particular type of that is attached to a . A driver provides a software interface to hardware devices, enabling operating systems and other computer programs to access hardware functions without needing to know precise details about the hardware.

A driver communicates with the device through the or communications subsystem to which the hardware connects. When a program invokes a in the driver, the driver issues commands to the device (drives it). Once the device sends data back to the driver, the driver may invoke routines in the original calling program.

Drivers are hardware-dependent and operating-system-specific. They usually provide the interrupt handling required for any necessary asynchronous time-dependent hardware interface.

(2025). 9780470618332, John Wiley & Sons. .


Purpose
The main purpose of device drivers is to provide abstraction by acting as a translator between a hardware device and the applications or that use it. Programmers can write higher-level application code independently of whatever specific hardware the end-user is using. For example, a high-level application for interacting with a may simply have two functions for "send data" and "receive data". At a lower level, a device driver implementing these functions would communicate to the particular serial port controller installed on a user's computer. The commands needed to control a 16550 UART are much different from the commands needed to control an serial port converter, but each hardware-specific device driver abstracts these details into the same (or similar) software interface.


Development
Writing a device driver requires an in-depth understanding of how the hardware and the software works for a given platform function. Because drivers require low-level access to hardware functions in order to operate, drivers typically operate in a highly privileged environment and can cause system operational issues if something goes wrong. In contrast, most user-level software on modern operating systems can be stopped without greatly affecting the rest of the system. Even drivers executing in can crash a system if the device is erroneously programmed. These factors make it more difficult and dangerous to diagnose problems.
(1995). 9781555581411, Digital Press. .

The task of writing drivers thus usually falls to software engineers or computer engineers who work for hardware-development companies. This is because they have better information than most outsiders about the design of their hardware. Moreover, it was traditionally considered in the hardware 's interest to guarantee that their clients can use their hardware in an optimal way. Typically, the Logical Device Driver (LDD) is written by the operating system vendor, while the Physical Device Driver (PDD) is implemented by the device vendor. However, in recent years, non-vendors have written numerous device drivers for proprietary devices, mainly for use with free and open source operating systems. In such cases, it is important that the hardware manufacturer provide information on how the device communicates. Although this information can instead be learned by reverse engineering, this is much more difficult with hardware than it is with software.

uses a combination of driver and minidriver, where the full class/port driver is provided with the operating system, and miniclass/miniport drivers are developed by vendors and implement hardware- or function-specific subset of the full driver stack. Miniport model is used by NDIS, WDM, , , , WIA, and HID drivers; each of them uses device-specific APIs and still requires the developer to handle tedious device management tasks.

has attempted to reduce system instability due to poorly written device drivers by creating a new framework for driver development, called Windows Driver Frameworks (WDF). This includes User-Mode Driver Framework (UMDF) that encourages development of certain types of drivers—primarily those that implement a message-based protocol for communicating with their devices—as user-mode drivers. If such drivers malfunction, they do not cause system instability. The Kernel-Mode Driver Framework (KMDF) model continues to allow development of kernel-mode device drivers but attempts to provide standard implementations of functions that are known to cause problems, including cancellation of I/O operations, power management, and plug-and-play device support.

Apple has an open-source framework for developing drivers on , called I/O Kit.

In environments, programmers can build device drivers as parts of the , separately as loadable modules, or as user-mode drivers (for certain types of devices where kernel interfaces exist, such as for USB devices). includes a list of the devices in Linux, including ttyS (terminal), lp (), hd (disk), loop, and sound (these include mixer, , dsp, and audio).

Microsoft Windows .sys files and .ko files can contain loadable device drivers. The advantage of loadable device drivers is that they can be loaded only when necessary and then unloaded, thus saving kernel memory.


Privilege levels
Depending on the operating system, device drivers may be permitted to run at various different privilege levels. The choice of which level of privilege the drivers are in is largely decided by the type of kernel an operating system uses. An operating system that uses a monolithic kernel, such as the , will typically run device drivers with the same privilege as all other kernel objects. By contrast, a system designed around , such as , will place drivers as processes independent from the kernel but that use it for essential functionalities and to pass messages between user programs and each other.
(2025). 9780131429383, Pearson Pretence Hall.
On , a system with a , it is common for device drivers to run in either or .
(2025). 9780735684188, Microsoft Press.

The most common mechanism for segregating memory into various privilege levels is via . On many systems, such as those with x86 and ARM processors, switching between rings imposes a performance penalty, a factor that operating system developers and embedded software engineers consider when creating drivers for devices which are preferred to be run with low latency, such as network interface cards. The primary benefit of running a driver in user mode is improved stability since a poorly written user-mode device driver cannot crash the system by overwriting kernel memory.


Applications
Because of the diversity of hardware and operating systems, drivers operate in many different environments.
(2025). 9780324830132, Cengage Learning. .
Drivers may interface with:

Common levels of abstraction for device drivers include:

  • For hardware:
    • Interfacing directly
    • Writing to or reading from a device control register
    • Using some higher-level interface (e.g. )
    • Using another lower-level device driver (e.g. file system drivers using disk drivers)
    • Simulating work with hardware, while doing something entirely different
      (2008). 9788184314748, Technical Publications Pune. .
  • For software:
    • Allowing the operating system direct access to hardware resources
    • Implementing only primitives
    • Implementing an interface for non-driver software (e.g. )
    • Implementing a language, sometimes quite high-level (e.g. )

So choosing and installing the correct device drivers for given hardware is often a key component of computer system configuration.


Virtual device drivers
Virtual device drivers represent a particular variant of device drivers. They are used to emulate a hardware device, particularly in environments, for example when a program is run on a Microsoft Windows computer or when a guest operating system is run on, for example, a host. Instead of enabling the guest operating system to dialog with hardware, virtual device drivers take the opposite role and emulates a piece of hardware, so that the guest operating system and its drivers running inside a can have the illusion of accessing real hardware. Attempts by the guest operating system to access the hardware are routed to the virtual device driver in the host operating system as e.g., . The virtual device driver can also send simulated processor-level events like into the virtual machine.

Virtual devices may also operate in a non-virtualized environment. For example, a virtual is used with a virtual private network, while a virtual disk device is used with . A good example for virtual device drivers can be .

There are several variants of virtual device drivers, such as , VLMs, and VDDs.


Open source drivers
  • Graphics device driver
  • Printers:
  • RAIDs: CCISS (Compaq Command Interface for SCSI-3 Support
    (2003). 9780738426846, IBM International Technical Support Organization. .
    )
  • Scanners: SANE
  • Video: , Direct Rendering Infrastructure

Solaris descriptions of commonly used device drivers:

  • fas: Fast/wide SCSI controller
  • hme: Fast (10/100 Mbit/s) Ethernet
  • isp: Differential SCSI controllers and the SunSwift card
  • glm: (Gigabaud Link Module) UltraSCSI controllers
  • scsi: Small Computer Serial Interface (SCSI) devices
  • sf: soc+ or social Fiber Channel Arbitrated Loop (FCAL)
  • soc: SPARC Storage Array (SSA) controllers and the control device
  • social: Serial optical controllers for FCAL (soc+)


APIs
  • Windows Display Driver Model (WDDM) – the graphic display driver architecture for and later.
  • Unified Audio Model (UAM)
  • Windows Driver Foundation (WDF)
  • Declarative Componentized Hardware (DCH) - Universal Windows Platform driver
  • Windows Driver Model (WDM)
  • Network Driver Interface Specification (NDIS) – a standard driver API
  • Advanced Linux Sound Architecture (ALSA) – the standard Linux sound-driver interface
  • Scanner Access Now Easy (SANE) – a public-domain interface to raster-image scanner-hardware
  • Installable File System (IFS) – a for IBM OS/2 and Microsoft Windows NT
  • Open Data-Link Interface (ODI) – network card API similar to NDIS
  • Uniform Driver Interface (UDI) – a cross-platform driver interface project
  • Dynax Driver Framework (dxd) – C++ open source cross-platform driver framework for KMDF and IOKit


Identifiers
A device on the or USB is identified by two IDs which consist of two each. The vendor ID identifies the vendor of the device. The device ID identifies a specific device from that manufacturer/vendor.

A PCI device has often an ID pair for the main chip of the device, and also a subsystem ID pair that identifies the vendor, which may be different from the chip manufacturer.


Security
Computers often have many diverse and customized device drivers running in their operating system kernel which often contain various and vulnerabilities, making them a target for exploits.
(2025). 9781939133045 .
A Bring Your Own Vulnerable Driver (BYOVD) attacker installs any signed, old third-party driver with known vulnerabilities that allow malicious code to be inserted into the kernel. Drivers that may be vulnerable include those for WiFi and Bluetooth, gaming/graphics drivers, and drivers for printers.

There is a lack of effective kernel vulnerability detection tools, especially for closed-source operating systems such as Microsoft Windows

(2025). 9781931971409, USENIX Association. .
where the source code of the device drivers is mostly proprietary and not available to examine, and drivers often have many privileges.

A group of security researchers considers the lack of isolation as one of the main factors undermining kernel security, and published an isolation framework to protect operating system kernels, primarily the monolithic whose drivers they say get ~80,000 commits per year.


See also


External links

Page 1 of 1
1
Page 1 of 1
1

Account

Social:
Pages:  ..   .. 
Items:  .. 

Navigation

General: Atom Feed Atom Feed  .. 
Help:  ..   .. 
Category:  ..   .. 
Media:  ..   .. 
Posts:  ..   ..   .. 

Statistics

Page:  .. 
Summary:  .. 
1 Tags
10/10 Page Rank
5 Page Refs